home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / WriteAbortedException.java < prev    next >
Text File  |  1998-09-22  |  2KB  |  54 lines

  1. /*
  2.  * @(#)WriteAbortedException.java    1.4 98/07/01
  3.  *
  4.  * Copyright 1995-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  * 
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.io;
  16.  
  17. /*
  18.  *
  19.  * @author  unascribed
  20.  * @version 1.4, 07/01/98
  21.  * @since   JDK1.1
  22.  */
  23. public class WriteAbortedException extends ObjectStreamException {
  24.     /*
  25.      * @since   JDK1.1
  26.      */
  27.     public Exception detail;
  28.  
  29.     /**
  30.      * A WriteAbortedException is thrown during a read when one of the
  31.      * ObjectStreamExceptions was thrown during writing.  The exception
  32.      * that terminated the write can be found in the detail field.
  33.      * The stream is reset to it's initial state, all references to
  34.      * objects already deserialized are discarded.
  35.      * @since   JDK1.1
  36.      */
  37.     public WriteAbortedException(String s, Exception ex) { 
  38.     super(s); 
  39.     detail = ex;
  40.     }
  41.  
  42.     /**
  43.      * Produce the message, include the message from the nested
  44.      * exception if there is one.
  45.      * @since   JDK1.1
  46.      */
  47.     public String getMessage() {
  48.     if (detail == null) 
  49.         return super.getMessage();
  50.     else
  51.         return super.getMessage() + "; " + detail.toString();
  52.     }
  53. }
  54.